home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / gfx / x11 / x3270_3_2_16.lha / amiga_src / HuskP.h < prev    next >
C/C++ Source or Header  |  2007-03-01  |  1KB  |  42 lines

  1. /*
  2.  * Copyright 1996, 1999 by Paul Mattes.
  3.  *  Permission to use, copy, modify, and distribute this software and its
  4.  *  documentation for any purpose and without fee is hereby granted,
  5.  *  provided that the above copyright notice appear in all copies and that
  6.  *  both that copyright notice and this permission notice appear in
  7.  *  supporting documentation.
  8.  */
  9.  
  10. /* 
  11.  * HuskP.h
  12.  *    Private definitions for Husk widget
  13.  */
  14.  
  15. /* Husk Widget Private Data */
  16.  
  17. #include "Husk.h"
  18. #include <X11/CompositeP.h>
  19.  
  20. /* New fields for the Husk widget class record */
  21. typedef struct {int empty;} HuskClassPart;
  22.  
  23. /* Full class record declaration */
  24. typedef struct _HuskClassRec {
  25.     CoreClassPart        core_class;
  26.     CompositeClassPart    composite_class;
  27.     HuskClassPart        husk_class;
  28. } HuskClassRec;
  29.  
  30. extern HuskClassRec huskClassRec;
  31.  
  32. /* New fields for the Husk widget record */
  33. typedef struct {int empty;} HuskPart;
  34.  
  35. /* Full instance record declaration */
  36.  
  37. typedef struct _HuskRec {
  38.     CorePart        core;
  39.     CompositePart          composite;
  40.     HuskPart        husk;
  41. } HuskRec;
  42.